home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Magnum One
/
Magnum One (Mid-American Digital) (Disc Manufacturing).iso
/
d12
/
cbibcode.arc
/
CLREOL.C
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1991-08-05
|
220 b
|
12 lines
/* p874.c --- Bible */
#include <conio.h>
char textstr[] = "Testing clreol. Press any key to "
"erase this sentence.";
main()
{
gotoxy(10,5);
cputs(textstr);
getch();
gotoxy(10 + 16, 5);
clreol();
}